+2008-10-13 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 555791 – Natuilus Crashes when opening USB MP3 Player Contents
+
+ * io-tga.c (gdk_pixbuf__tga_stop_load): Don't segfault on
+ short files.
+ Problem reported by Pedro Villavicencio
+
2008-10-01 Tor Lillqvist <tml@novell.com>
* io-icns.c: Don't #define _GNU_SOURCE on Windows as it confuses
}
ctx->pbuf_bytes = ctx->pbuf->rowstride * ctx->pbuf->height;
- if (ctx->hdr->flags & TGA_ORIGIN_UPPER || ctx->run_length_encoded)
+ if ((ctx->hdr->flags & TGA_ORIGIN_UPPER) || ctx->run_length_encoded)
ctx->pptr = ctx->pbuf->pixels;
else
ctx->pptr = ctx->pbuf->pixels + (ctx->pbuf->height - 1)*ctx->pbuf->rowstride;
TGAContext *ctx = (TGAContext *) data;
g_return_val_if_fail(ctx != NULL, FALSE);
- if (!(ctx->hdr->flags & TGA_ORIGIN_UPPER) &&
- ctx->run_length_encoded && ctx->pbuf) {
+ if (ctx->hdr &&
+ (ctx->hdr->flags & TGA_ORIGIN_UPPER) == 0 &&
+ ctx->run_length_encoded &&
+ ctx->pbuf) {
pixbuf_flip_vertically (ctx->pbuf);
if (ctx->ufunc)
(*ctx->ufunc) (ctx->pbuf, 0, 0,